码迷,mamicode.com
首页 >  
搜索关键字:yum list | grep zsh    ( 87714个结果
地址经纬度解析
python\小脚本\地址经纬度解析.py # -*- coding: utf-8 -*- """ Created on Thu Nov 24 10:10:13 2016 @author: Acer """ # -*- coding: utf-8 -*- #import sys, urllib, u ...
分类:其他好文   时间:2021-03-15 11:02:26    阅读次数:0
树形数据结构化
树形数据 let list = [ { id: 1, pid: 0, path: '/home', title: '首页', name: 'Home' }, { id: 2, pid: 0, path: '/student', name: 'Student', title: '招生管理' }, { ...
分类:其他好文   时间:2021-03-15 10:59:22    阅读次数:0
2021-3-13 xml的增删改查
public void XmlAdd(string filename, List<People> pList) { try { List<People> peoples = XmlDeSerializer(filename); foreach (var item in pList) { People ...
分类:其他好文   时间:2021-03-15 10:59:05    阅读次数:0
Centos7.3 卸载 Nginx(彻底卸载) 并重新安装 Nginx(RPM源yum安装)
卸载nginx 首先输入命令 ps -ef | grep nginx检查一下nginx服务是否在运行。如果在运行就停止运行,需要在nginx的安装目录下的sbin执行,如果配置了环境就不需要了: ./nginx -s stop 查找、删除Nginx相关文件 查看Nginx相关文件: whereis ...
分类:其他好文   时间:2021-03-15 10:55:23    阅读次数:0
PAT(Advanced Level)A1133. Splitting A Linked List
题意 要让链表里的所有负数的结点排在非负数的前面,以及让所有的[0, K]的数字放在(k, ∞)的前面,而且要保持相对顺序不变。保证链表不为空 思路 依次遍历链表的每个结点进行标记,第一趟取出负数,第二趟取出[0, K]内的数字,第三趟取出剩下没有取的数字,标记的方式是令data = 100010, ...
分类:其他好文   时间:2021-03-15 10:43:58    阅读次数:0
使用thinkphp 高效开发后台
简介基于thinkphp6.0 开发的后台快速开发包 本项目是一个快速开发后台的工具库,完全基于面向对象思想; 一切都是可以通过重写继承达到自定义的; 本项目无任何业务功能上的封装,业务上的一切都需要您自己开发,只是会让您开发得更流畅; gitee地址: https://gitee.com/wsh2 ...
分类:Web程序   时间:2021-03-15 10:33:14    阅读次数:0
616. Add Bold Tag in String
Given a string s and a list of strings dict, you need to add a closed pair of bold tag <b> and </b> to wrap the substrings in s that exist in dict. If ...
分类:其他好文   时间:2021-03-15 10:29:48    阅读次数:0
nginx 1.8编译安装
##安装依赖 yum install gcc gcc-c++ automake pcre pcre-devel zlip zlib-devel openssl openssl-devel ##解压 tar xf nginx-1.18.0.tar.gz -C /data/ ##创建虚拟用户 usera ...
分类:其他好文   时间:2021-03-12 13:27:36    阅读次数:0
WPF DataGrid点击有效区域Check
1、DataGrid注册左键事件,点击有效区域Check //在窗体Load中增加 this.dataGrid.AddHandler(DataGrid.MouseLeftButtonDownEvent, new MouseButtonEventHandler(this.DataGrid_MouseL ...
分类:Windows程序   时间:2021-03-11 20:54:00    阅读次数:0
CentOS 的 dnf 命令
列出所有repo文件 dnf repolist all 列出系统所有repo文件 dnf repolist 列出所有软件包(已安装+可用) dnf list 列出已安装的包 dnf list installed 列出可用的包 dnf list available 列出组包 dnf grouplist ...
分类:其他好文   时间:2021-03-11 20:48:56    阅读次数:0
87714条   上一页 1 ... 77 78 79 80 81 ... 8772 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!